10
How do I bring/ensure a specified face to the front

extreecube1.IdentifyFace = exontrol.EXTREECUBELib.IdentifyFaceEnum.exIdentifyFaceFrame | exontrol.EXTREECUBELib.IdentifyFaceEnum.exIdentifyFaceName | exontrol.EXTREECUBELib.IdentifyFaceEnum.exIdentifyFaceCaption;
extreecube1.VisibleFace = exontrol.EXTREECUBELib.FaceEnum.exTopFace;

9
How do I bring/ensure a specified face to the front

extreecube1.IdentifyFace = exontrol.EXTREECUBELib.IdentifyFaceEnum.exIdentifyFaceFrame | exontrol.EXTREECUBELib.IdentifyFaceEnum.exIdentifyFaceName | exontrol.EXTREECUBELib.IdentifyFaceEnum.exIdentifyFaceCaption;
extreecube1.EnsureVisibleFace(exontrol.EXTREECUBELib.FaceEnum.exTopFace,null);

8
It sounds like the BackColor property does nothing

extreecube1.BackColor = Color.FromArgb(255,0,0);
extreecube1.Transparent = 50;

7
Is there any property to identify the faces I can fill in

extreecube1.IdentifyFace = exontrol.EXTREECUBELib.IdentifyFaceEnum.exIdentifyFaceFrame | exontrol.EXTREECUBELib.IdentifyFaceEnum.exIdentifyFaceName | exontrol.EXTREECUBELib.IdentifyFaceEnum.exIdentifyFaceCaption;

6
How can I prevent scrolling the control inside a face once the user rolls the mouse wheel
extreecube1.OnMouseWheel = exontrol.EXTREECUBELib.OnMouseWheelEnum.exMouseWheelNothing;

5
Can I navigate through the faces 0 to 3 only, even with the keyboard
extreecube1.EnsureVisibleFaces = "0,1,2,3";
extreecube1.AllowRotate = exontrol.EXTREECUBELib.RotateEnum.exRotateRight | exontrol.EXTREECUBELib.RotateEnum.exRotateLeft;
extreecube1.IdentifyFace = exontrol.EXTREECUBELib.IdentifyFaceEnum.exIdentifyFaceFrame | exontrol.EXTREECUBELib.IdentifyFaceEnum.exIdentifyFaceName | exontrol.EXTREECUBELib.IdentifyFaceEnum.exIdentifyFaceCaption;
extreecube1.EnsureVisibleFaceOnDblClick = false;

4
It sounds like the BackColor property does nothing

extreecube1.BackColor = Color.FromArgb(255,0,0);
extreecube1.ShowAs = exontrol.EXTREECUBELib.ShowAsEnum.exOrthographic;
extreecube1.AlwaysEnsureVisibleFace = exontrol.EXTREECUBELib.EnsureVisibleFaceEnum.exDisableEnsureVisibleFace;
extreecube1.RotX = 0.328184;
extreecube1.RotY = 0.967723;

3
Is it possible to let the control shows/rotates just the left/right side
extreecube1.AllowRotate = exontrol.EXTREECUBELib.RotateEnum.exRotateRight | exontrol.EXTREECUBELib.RotateEnum.exRotateLeft;

2
How can I disable changing the view if the user presses SPACE or digit keys
extreecube1.AllowEnsureVisibleFaceOnKey = exontrol.EXTREECUBELib.AllowEnsureVisibleFaceOnKeyEnum.exEnsureVisibleFaceOnKeyDisabled;

1
I've noticed that I can not show the part of the control as I drag, once I release the mouse button

extreecube1.IdentifyFace = exontrol.EXTREECUBELib.IdentifyFaceEnum.exIdentifyFaceFrame | exontrol.EXTREECUBELib.IdentifyFaceEnum.exIdentifyFaceName | exontrol.EXTREECUBELib.IdentifyFaceEnum.exIdentifyFaceCaption;
extreecube1.AlwaysEnsureVisibleFace = exontrol.EXTREECUBELib.EnsureVisibleFaceEnum.exDisableEnsureVisibleFace;